home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / folderProps.js < prev    next >
Encoding:
JavaScript  |  2005-06-01  |  12.9 KB  |  409 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is mozilla.org code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 2000-2002
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   David Bienvenu <bienvenu@mozilla.org>
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. var gMsgFolder;
  39. var gServerTypeFolder = null;
  40. var gPreselectedFolderURI = null;
  41. var gParentMsgWindow = null;
  42. var gNameTextbox;
  43. var gOldName;
  44. var gOkButton;
  45. var gLockedPref = null;
  46.  
  47. // services used
  48. var RDF;
  49.  
  50. // corresponds to MSG_FOLDER_FLAG_OFFLINE
  51. const MSG_FOLDER_FLAG_OFFLINE = 0x8000000
  52.  
  53. // corresponds to MSG_FOLDER_FLAG_CHECK_NEW
  54. const MSG_FOLDER_FLAG_CHECK_NEW = 0x20000000
  55.  
  56. // corresponds to MSG_FOLDER_FLAG_INBOX
  57. const MSG_FOLDER_FLAG_INBOX = 0x1000
  58.  
  59. // The folderPropsSink is the class that gets notified of an imap folder's properties
  60.  
  61. var gFolderPropsSink = {
  62.     setFolderType: function(folderTypeString)
  63.     {
  64.       var typeLabel = document.getElementById("folderType.text");
  65.       if (typeLabel)
  66.       {
  67.         typeLabel.setAttribute("value",folderTypeString);
  68.       }
  69.       // get the element for the folder type label and set value on it.
  70.     },
  71.  
  72.     setFolderTypeDescription: function(folderDescription)
  73.     {
  74.       var folderTypeLabel = document.getElementById("folderDescription.text");
  75.       if (folderTypeLabel)
  76.         folderTypeLabel.setAttribute("value", folderDescription);
  77.     },
  78.  
  79.     setFolderPermissions: function(folderPermissions)
  80.     {
  81.       var permissionsLabel = document.getElementById("folderPermissions.text");
  82.       var descTextNode =  document.createTextNode(folderPermissions);
  83.       permissionsLabel.appendChild(descTextNode);
  84.     },
  85.  
  86.     serverDoesntSupportACL : function()
  87.     {
  88.       var typeLabel = document.getElementById("folderTypeLabel");
  89.       if (typeLabel)
  90.         typeLabel.setAttribute("hidden", "true");
  91.       var permissionsLabel = document.getElementById("permissionsDescLabel");
  92.       if (permissionsLabel)
  93.         permissionsLabel.setAttribute("hidden", "true");
  94.  
  95.     },
  96.  
  97.     setQuotaStatus : function(folderQuotaStatus)
  98.     {
  99.       var quotaStatusLabel = document.getElementById("folderQuotaStatus");
  100.       if(quotaStatusLabel)
  101.         quotaStatusLabel.setAttribute("value", folderQuotaStatus);
  102.     },
  103.  
  104.     showQuotaData : function(showData)
  105.     {
  106.       var quotaStatusLabel = document.getElementById("folderQuotaStatus");
  107.       var folderQuotaData = document.getElementById("folderQuotaData");
  108.  
  109.       if(quotaStatusLabel && folderQuotaData)
  110.       {
  111.         quotaStatusLabel.hidden = showData;
  112.         folderQuotaData.hidden = ! showData;
  113.       }
  114.     },
  115.  
  116.     setQuotaData : function(root, usedKB, maxKB)
  117.     {
  118.       var quotaRoot = document.getElementById("quotaRoot");
  119.       if (quotaRoot)
  120.         quotaRoot.setAttribute("value", '"' + root + '"');
  121.  
  122.       var percentage = (maxKB != 0) ? Math.round(usedKB / maxKB * 100) : 0;
  123.  
  124.       var quotaPercentageBar = document.getElementById("quotaPercentageBar");
  125.       if (quotaPercentageBar)
  126.         quotaPercentageBar.setAttribute("value", percentage);
  127.  
  128.       var bundle = document.getElementById("bundle_messenger");
  129.       if(bundle)
  130.       {
  131.         var usedFreeCaption = bundle.getFormattedString("quotaUsedFree", [usedKB, maxKB], 2);
  132.         quotaCaption = document.getElementById("quotaUsedFree");
  133.         if(quotaCaption)
  134.           quotaCaption.setAttribute("value", usedFreeCaption);
  135.  
  136.         var percentUsedCaption = bundle.getFormattedString("quotaPercentUsed", [percentage], 1);
  137.         var percentUsed = document.getElementById("quotaPercentUsed");
  138.         if(percentUsed)
  139.           percentUsed.setAttribute("value", percentUsedCaption);
  140.       }
  141.     }
  142.  
  143. };
  144.  
  145. function doEnabling()
  146. {
  147.   gOkButton.disabled = !gNameTextbox.value;
  148. }
  149.  
  150. function folderPropsOKButton()
  151. {
  152.   if (gMsgFolder)
  153.   {
  154.  
  155.     // set charset attributes
  156.     var folderCharsetList = document.getElementById("folderCharsetList");
  157.     gMsgFolder.charset = folderCharsetList.getAttribute("value");
  158.     gMsgFolder.charsetOverride = document.getElementById("folderCharsetOverride").checked;
  159.  
  160.     if(document.getElementById("offline.selectForOfflineFolder").checked ||
  161.       document.getElementById("offline.selectForOfflineNewsgroup").checked)
  162.       gMsgFolder.setFlag(MSG_FOLDER_FLAG_OFFLINE);
  163.     else
  164.       gMsgFolder.clearFlag(MSG_FOLDER_FLAG_OFFLINE);
  165.  
  166.     if(document.getElementById("folderCheckForNewMessages").checked)
  167.       gMsgFolder.setFlag(MSG_FOLDER_FLAG_CHECK_NEW);
  168.     else
  169.       gMsgFolder.clearFlag(MSG_FOLDER_FLAG_CHECK_NEW);
  170.  
  171.     var retentionSettings = saveCommonRetentionSettings();
  172.     retentionSettings.useServerDefaults = document.getElementById("retention.useDefault").checked;
  173.     gMsgFolder.retentionSettings = retentionSettings;
  174.  
  175.   }
  176.  
  177.   try
  178.   {
  179.     // This throws an exception when an illegal folder name was entered.
  180.     okCallback(gNameTextbox.value, gOldName, gPreselectedFolderURI);
  181.  
  182.     return true;
  183.   }
  184.   catch (e)
  185.   {
  186.     return false;
  187.   }
  188. }
  189.  
  190. function folderPropsOnLoad()
  191. {
  192.   gOkButton = document.documentElement.getButton("accept");
  193.  
  194.   RDF = Components.classes["@mozilla.org/rdf/rdf-service;1"].getService(Components.interfaces.nsIRDFService);
  195.  
  196.   // look in arguments[0] for parameters
  197.   if (window.arguments && window.arguments[0]) {
  198.     if ( window.arguments[0].title ) {
  199.       document.title = window.arguments[0].title;
  200.     }
  201.     if ( window.arguments[0].okCallback ) {
  202.       top.okCallback = window.arguments[0].okCallback;
  203.     }
  204.   }
  205.  
  206.   // fill in folder name, based on what they selected in the folder pane
  207.   if (window.arguments[0].preselectedURI) {
  208.     try {
  209.       gPreselectedFolderURI = window.arguments[0].preselectedURI;
  210.     }
  211.     catch (ex) {
  212.     }
  213.   }
  214.   else {
  215.     dump("passed null for preselectedURI, do nothing\n");
  216.   }
  217.  
  218.   if(window.arguments[0].name)
  219.   {
  220.     // Initialize name textbox with the given name and remember this
  221.     // value so we can tell whether the folder needs to be renamed
  222.     // when the dialog is accepted.
  223.     gNameTextbox = document.getElementById("name");
  224.     gNameTextbox.value = gOldName = window.arguments[0].name;
  225.  
  226. //  name.setSelectionRange(0,-1);
  227. //  name.focusTextField();
  228.   }
  229.  
  230.   gServerTypeFolder = window.arguments[0].serverType;
  231.  
  232.   if (window.arguments && window.arguments[0]) {
  233.     if (window.arguments[0].msgWindow) {
  234.       gParentMsgWindow = window.arguments[0].msgWindow;
  235.     }
  236.   }
  237.  
  238.   // this hex value come from nsMsgFolderFlags.h
  239.   var folderResource = RDF.GetResource(gPreselectedFolderURI);
  240.     
  241.   if (folderResource)
  242.     gMsgFolder = folderResource.QueryInterface(Components.interfaces.nsIMsgFolder);
  243.   if (!gMsgFolder)
  244.     dump("no gMsgFolder preselectfolder uri = "+gPreselectedFolderURI+'\n');
  245.  
  246.   if (gMsgFolder) {
  247.     if (gMsgFolder.canRename)
  248.       gNameTextbox.removeAttribute("readonly");
  249.  
  250.     if (gMsgFolder.flags & MSG_FOLDER_FLAG_OFFLINE) {
  251.  
  252.       if(gServerTypeFolder == "imap" || gServerTypeFolder == "pop3")
  253.         document.getElementById("offline.selectForOfflineFolder").checked = true;
  254.  
  255.       if(gServerTypeFolder == "nntp")
  256.         document.getElementById("offline.selectForOfflineNewsgroup").checked = true;
  257.     }
  258.     else {
  259.       if(gServerTypeFolder == "imap" || gServerTypeFolder == "pop3")
  260.         document.getElementById("offline.selectForOfflineFolder").checked = false;
  261.  
  262.       if(gServerTypeFolder == "nntp")
  263.         document.getElementById("offline.selectForOfflineNewsgroup").checked = false;
  264.     }
  265.  
  266.     // select the menu item 
  267.     var folderCharsetList = document.getElementById("folderCharsetList");
  268.     var elements = folderCharsetList.getElementsByAttribute("value", gMsgFolder.charset);
  269.     folderCharsetList.selectedItem = elements[0];
  270.  
  271.  
  272.     // set override checkbox
  273.     document.getElementById("folderCharsetOverride").checked = gMsgFolder.charsetOverride;
  274.  
  275.     // set check for new mail checkbox
  276.     document.getElementById("folderCheckForNewMessages").checked = gMsgFolder.flags & MSG_FOLDER_FLAG_CHECK_NEW;
  277.   }
  278.  
  279.   if (gServerTypeFolder == "imap")
  280.   {
  281.     var imapFolder = gMsgFolder.QueryInterface(Components.interfaces.nsIMsgImapMailFolder);
  282.     if (imapFolder)
  283.       imapFolder.fillInFolderProps(gFolderPropsSink);
  284.  
  285.   }
  286.  
  287.   var retentionSettings = gMsgFolder.retentionSettings;
  288.   initCommonRetentionSettings(retentionSettings);
  289.   document.getElementById("retention.useDefault").checked = retentionSettings.useServerDefaults;
  290.     
  291.   // select the initial tab
  292.   if (window.arguments[0].tabID) {
  293.     // set index for starting panel on the <tabpanel> element
  294.     var folderPropTabPanel = document.getElementById("folderPropTabPanel");
  295.     folderPropTabPanel.setAttribute("selectedIndex", window.arguments[0].tabIndex);
  296.  
  297.     try {
  298.       var tab = document.getElementById(window.arguments[0].tabID);
  299.       tab.setAttribute("selected", "true");
  300.     }
  301.     catch (ex) {}
  302.   }
  303.   hideShowControls(gServerTypeFolder);
  304.   onCheckKeepMsg();
  305.   onUseDefaultRetentionSettings();
  306.  
  307.   moveToAlertPosition();
  308. }
  309.  
  310. function hideShowControls(serverType)
  311. {
  312.   var controls = document.getElementsByAttribute("hidable", "true");
  313.   var len = controls.length;
  314.   for (var i=0; i<len; i++) {
  315.     var control = controls[i];
  316.     var hideFor = control.getAttribute("hidefor");
  317.     if (!hideFor)
  318.       throw "this should not happen, things that are hidable should have hidefor set";
  319.  
  320.     var box = getEnclosingContainer(control);
  321.  
  322.     if (!box)
  323.       throw "this should not happen, things that are hidable should be in a box";
  324.  
  325.     // hide unsupported server type
  326.     // adding support for hiding multiple server types using hideFor="server1,server2"
  327.     var hideForBool = false;
  328.     var hideForTokens = hideFor.split(",");
  329.     for (var j = 0; j < hideForTokens.length; j++) {
  330.       if (hideForTokens[j] == serverType) {
  331.         hideForBool = true;
  332.         break;
  333.       }
  334.     }
  335.  
  336.     if (hideForBool) {
  337.       box.setAttribute("hidden", "true");
  338.     }
  339.     else {
  340.       box.removeAttribute("hidden");
  341.     }
  342.   }
  343.   // hide the priviliges button if the imap folder doesn't have an admin url
  344.   // mabye should leave this hidden by default and only show it in this case instead
  345.   try {
  346.     var imapFolder = gMsgFolder.QueryInterface(Components.interfaces.nsIMsgImapMailFolder);
  347.     if (imapFolder)
  348.     {
  349.       var privilegesButton = document.getElementById("imap.FolderPrivileges");
  350.       if (privilegesButton)
  351.       {
  352.         if (!imapFolder.hasAdminUrl)
  353.           privilegesButton.setAttribute("hidden", "true");
  354.       }
  355.     }
  356.   }
  357.   catch (ex) {}
  358.  
  359.   // hide "check for new mail" checkbox if this is inbox
  360.   if (gMsgFolder)
  361.   {
  362.     if (gMsgFolder.flags & MSG_FOLDER_FLAG_INBOX)
  363.     {
  364.       document.getElementById("folderCheckForNewMessages").setAttribute("hidden", "true");
  365.     }
  366.   }
  367.  
  368. }
  369.  
  370. function getEnclosingContainer(startNode) 
  371. {
  372.   var parent = startNode;
  373.   var box; 
  374.   while (parent && parent != document) 
  375.   {
  376.     var isContainer = (parent.getAttribute("iscontrolcontainer") == "true");
  377.  
  378.     // remember the FIRST container we encounter, or the first controlcontainer
  379.     if (!box || isContainer) box=parent;
  380.         
  381.     // break out with a controlcontainer
  382.     if (isContainer) break;
  383.       parent = parent.parentNode;
  384.   }
  385.   return box;
  386. }
  387.  
  388. function onOfflineFolderDownload()
  389. {
  390.   // we need to create a progress window and pass that in as the second parameter here.
  391.   gMsgFolder.downloadAllForOffline(null, gParentMsgWindow);
  392. }
  393.  
  394. function onFolderPrivileges()
  395. {
  396.   var imapFolder = gMsgFolder.QueryInterface(Components.interfaces.nsIMsgImapMailFolder);
  397.   if (imapFolder)
  398.     imapFolder.folderPrivileges(gParentMsgWindow);
  399.   // let's try closing the modal dialog to see if it fixes the various problems running this url
  400.   window.close(); 
  401. }
  402.  
  403.  
  404. function onUseDefaultRetentionSettings()
  405. {
  406.   var useDefault = document.getElementById("retention.useDefault").checked;
  407.   document.getElementById('retention.keepMsg').disabled = useDefault;
  408. }
  409.